Sam Herrmann

Results 12 comments of Sam Herrmann

I just had a use case where the immutable array approach (`[...someArray]`) was not feasible due to frequent updates to the large array. Luckily [*cdkForOf](https://material.angular.io/cdk/scrolling/api#CdkVirtualForOf) also accepts the array as...

I am experiencing this issue as well using Angular v13. Here is my minimalistic reproduction which only involves a `trackBy` function and `FormArray.removeAt()`: https://stackblitz.com/edit/angular-ivy-bqwaqd?file=src/app/app.component.html

I just noticed in option 1 that this only works as long as the errors have static messages. For dynamic errors where the message string may be different, it becomes...

[Here is the same issue](https://github.com/go-chi/jwtauth/issues/50) for the `go-chi/jwtauth` library. They moved to https://github.com/lestrrat-go/jwx.

@tanema I thought that would be the case. If there's no better solution after talking to the online store about this, I suggest, if I may, adding a note in...

@superfein themekit can already do this with the `--notify` flag on the [watch command](https://shopify.github.io/themekit/commands/#watch). The file that you tell themekit to touch after the upload (i.e. after themekit receives the...

@superfein, no I am not using Gulp yet. I am only just getting set up for Shopify theme development but it may not be long until I feel the need...

I'm not sure if this should be a separate issue, but based on the [sandcastle example, line 43](https://sandcastle.cesium.com/index.html?src=Picking.html), it should be possible to assign a [Cartesian3](https://cesium.com/docs/cesiumjs-ref-doc/Cartesian3.html?classFilter=Cartesi) position to `entity.position`. This...

@benwiles1 I was thinking that too at first, but the problem with that is that when getting a value it would be typed as `Cartesian3 | PositionProperty` while in reality...

I just converted a project from a single module... ``` / | -- go.mod | -- main.go | -- more_nested_directories/ ``` ...to a multi-module workspace.... ``` / | -- go.work...