Jan Špaček

Results 68 comments of Jan Špaček

This also came up in #1102 and #997.

This might be fixed by #1556. When I try to `chisel dev` a fresh project without `node_modules` installed, I get a better error message that displays the error output from...

Note that if I try to do something similar with strings: ```ts nickname: string = "bo" + "b"; ``` then I get an error from `chisel apply`: `error: expression not...

Hmm, so what is the difference between a literal and expression default value? It might be confusing if `isAwesome: boolean = false` behaves differently from `isAwesome: boolean = !true`.

I guess this _might_ be solved by #1618, because any errors during initialization should kill the server. (No errors or panics should be ignored.)

Rather than trying to do this on the level of `RouteMap`, it should perhaps be a helper function that you call from your route, something like ``` async function getPerson(req:...

What do you mean by "auto-generated internal endpoints"? It seems to me that we could implement the hypothetical `paginate()` function today, without any extensive modifications to our code :thinking: I...

What is the reason to say `User.update(user, { email: "..." })` instead of `user.email = "..."`? That it validates the data and saves the entity?

Yes, I considered implementing the BGR types myself, but for my application it was not worth the trouble, so I simply stopped using `image-rs`. However, I'm probably not the only...

> On the other hand, I would advise you to use the image crate for decoding purposes, and not for storing the decoded data. Is there any problem with using...