Sean Kruzel
Sean Kruzel
I received the same error and had to install angular-material-icons in addition to mdDataTable ```bash bower install angular-material-icons --save bower install md-data-table --save ``` Then include both `ngMdIcons` and `mdDataTable`...
Is anyone working on python support here? I'm receiving this error message: ```bash pyroscope adhoc python mycode.py Error: spy "pyspy" is not supported. Available spies are: dotnetspy```
for me if I round the quantity to 6 decimals, it works, if I round to 8 decimals it fails with the "'Order quantity cannot include fractional shares.'" error
I currently handle this with the following wrapper code: where `graphObj` is my connection to neo4j Using a fixed 400ms retry with a maximum of 5 retries. ``` javascript var...
This took me a bit to navigate, I have gotten this to work by adding the following lines to `jupyterhub_config.py` ```python spawn_cmd = "start-singleuser.sh --SingleUserNotebookApp.default_url=/lab --SingleUserNotebookApp.disable_user_config=True" c.DockerSpawner.extra_create_kwargs.update({ 'command': spawn_cmd })...
Same as this issue: https://github.com/jupyterhub/jupyterhub-deploy-docker/issues/91
Any progress on this?
It worked for me by changing the prisma generator from ``` generator client { provider = "prisma-client-js" } ``` to ``` generator client { provider = "prisma-client-py" interface = "asyncio"...
@twiecki if `pyfolio` and `empyrical` are going to be so intertwined, I believe better testing and deployment needs to be made. Maybe synchronize version numbers / releases when there are...
This continues to be annoying and for large files changes (especially ipynb) since they mix code changes and output changes. My current solution is to just create the `.opencommitignore` file...