Martin

Results 46 comments of Martin

Are there plans to support server components (primarily with Next.js) in the initial `v6.0` release (things like static CSS extraction)? Would be great to reduce the bundled javascript in some...

I asked the Next.js team for the estimates regarding the Authentication guide on their beta docs. Here is a reply from `Delba de Oliveira`: > We're planning to make the...

Seems like these commits might be relevant: 1. https://github.com/nextauthjs/next-auth/commit/e90925bea03f30a4f9d11bdd0be6d5a053d08a7e 2. https://github.com/nextauthjs/next-auth/commit/3343ef18b27761a06f2c23df44d0b8269ec85b71

The biggest blocker for me at this point is the authentication part. I've figured out how to use MUI with emotion, localization, and some other things. So, as soon as...

Seems like this library handles the auth for the `app` directory: https://github.com/ensite-in/next-firebase-auth-edge The examples seem to demonstrate that it can also work on the server - not only on edge...

I was wondering if it would be possible to make the colors inside `manim` immutable? Otherwise, it's not possible to use them in `dataclasses` as default values.

Sorry for the confusion. Seems like my provided code was not complete. Here is the complete example: ```py from manim import * from dataclasses import dataclass @dataclass class Array: values:...

It doesn't. What if we need several different arrays? This should be an instance variable.

I would be happy to store it as another type as well. The problem is that it's currently mutable. So, the only way to have it in a `dataclass` is...

Maybe making `ManimColor` a frozen dataclass might help? Currently, the colors are of type `ManimColor`, which is a class; therefore, the values of all the colors are mutable.