Jon Elling

Results 62 comments of Jon Elling

Per the Readme, I did a "`docker exec -it {YOUR_CONTAINER_ID} /bin/bash`" into the container and verified that the config directory is reading from my host config directory and that private.py...

Thanks for the response but /Users/jelling/.aptfinder is not the project root directory. I'm on OSX if I matters.

The only thing in the log is a couple of these: `/usr/local/lib/python3.4/dist-packages/bs4/__init__.py:181: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser fo r this system...

Is there a known good private.py I can reference? Interestingly, a pycache file is created for my private.py when I run the program. This indicates to me it's being properly...

I hope this happens. This a great looking project and it needs an owner.

I'm not using supastate but the issue for me was that I had some files using `import { useHistory } from "react-router-dom";` and others using `import { useHistory } from...

Did you try FLV? I got that to work but not h264

@bushybuffalo reported a fix [here](https://github.com/nestjs/nest/issues/986). I couldn't get it to work with my project but our configuration is more complicated than the example. I went with @kel-sakal-biyik's solution for now.

I had the same question and solved it by following this example: http://embed.plnkr.co/mbPzd8/ Specifically, look in app.comonent.ts at: ```openCustom() { return this.modal.open(CustomModal, overlayConfigFactory({ num1: 2, num2: 3 }, BSModalContext)); }...