Kevin Brey

Results 39 comments of Kevin Brey
trafficstars

I am also running into this. The error is: ``` ng-inspector: An error occurred attempting to invoke directive: userProfile Error: [ng:areq] Argument 'fn' is not a function, got Object(…) ```...

I looked at this a little bit and was able to get inspector to recognize components as directives by lifting some [code from the angular source](https://github.com/angular/angular.js/blob/aaa069a65a229b4bccfad37cd588326411387615/src/ng/compile.js#L1112). Not sure if I'm...

I worked on this a little bit more and it seems to be pretty functional. No more errors are logged and inspecting controller members works as expected. I would appreciate...

Either pull down my repo and load it as an unpacked extension or copy this [try-catch block](https://github.com/manbearwiz/ng-inspector/blob/master/src/js/Service.js#L19) over the corresponding block on your installed extension.

I'm looking at the [Live SDK Documentation](http://msdn.microsoft.com/library/dn659733) and see they have some good code samples for someone with the motivation to work on this.

If anyone else ends reading through this issue in the future, `declaration-property-value-whitelist` is deprecated in favor of [`declaration-property-value-allowed-list`](https://stylelint.io/user-guide/rules/list/declaration-property-value-allowed-list/).

Another option for syntax is yUML used by [yUML](http://yuml.me/diagram/scruffy/class/draw) and [Scruffy](https://github.com/aivarsk/scruffy) ``` [Customer|-forname:string;surname:string|doShiz()]-orders*>[Order] [Order]++-0..*>[LineItem] [Order]-[note:Aggregate root{bg:wheat}] ``` ![](http://yuml.me/diagram/scruffy/class/%2F%2F Cool Class Diagram, [Customer|-forname:string;surname:string|doShiz%28%29]-orders*>[Order], [Order]++-0..*>[LineItem], [Order]-[note:Aggregate root{bg:wheat}].svg)

You can do that with the `YDL_OUTPUT_TEMPLATE` env var. You can set it inline in your run command or in a docker-compose file. ``` YDL_OUTPUT_TEMPLATE='/youtube-dl/%(id)s/%(title)s [%(id)s].%(ext)s' python3 -m uvicorn youtube-dl-server:app...

I added the ability to load it from a `.env` file. Just put `YDL_OUTPUT_TEMPLATE='/youtube-dl/%(id)s/%(title)s [%(id)s].%(ext)s'` in a file called `.env` at the root of the project.

Yeah I was going to ask about that. Its not going to hurt anything being in master, but then it would only work for users upgrading straight from 4 to...