Simon Weaver

Results 45 comments of Simon Weaver

@mgechev Thanks for the reply. Yes all those div, article, figure and section nodes are dynamic components - not just HTML. The only exception is the 'picture' tag which is...

@amakhrov can you provide your implementation for `asType`. Also have you considered situations where the type is a discriminated union without distinct named types for each sub-type. eg. type Animal...

@Sharparam I'm not sure what you mean by they generate `!` but I'm guessing maybe you are generating classes? I am using interfaces for a typescript Angular client and when...

Has anyone already on this thread made the necessary changes for themselves? I just spent all day updating to Angular 14 and I thought I was going to attempt to...

This doesn't work - you get infinite recursion Should be var isWriteable = localIWO(o); instead of var isWriteable = ko.isWriteableObservable(o); (inside the ko.isWriteableObservable function)

It's a shame the mapping seems to have been neglected - it definitely has some issues and I wish it had been maintained - but I'm stuck with using it...

One way to magically watch your queued jobs disappear is to add a `[LatencyTimeout]` attribute to the job. In this case jobs queued longer than 2 minutes will get deleted...

Please add something like this to the main page! You will get a lot more people using your project if you explain it better. Also it would be very important...

The 'sibling' thing won't work if you don't put the css in your main `styles.scss`. If you try to put it in `app.component.scss` it won't work because of the view...

A lot of people are suggesting `flex: 1 1 auto;` but be cautious of this in Safari if you have a complex layout. I had some absolutely positioned children and...