Splines
Splines
I think with a few tweaks, we could make MaMpf available as Progressive Web App (PWA). This would allow users on smartphones and tablets to install a "MaMpf App". This...
The search engine `Solr 8` has reached end of life in October 2024, see [here](https://solr.apache.org/news.html#solr-8-reaches-end-of-life). We should upgrade to version 9 and then soon after to version 10 that is...
When updating dependencies, I got the following warning message: > I18n will be dropping support for Ruby < 3.2 in the next major release (April 2025), due to Ruby's end...
Rails 8.0 was released on 7 November, 2024, see [here](https://rubyonrails.org/2024/11/7/rails-8-no-paas-required). That means we can update to it ;)
In a completely empty mampf database, we get this error: ``` PG::UndefinedTable: ERROR: relation "media" does not exist LINE 10: WHERE a.attrelid = '"media"'::regclass ``` If the database is reseeded...
Hey, thanks for this awesome tool, it worked liked a charm on a [recent video I made](https://youtu.be/IajkdcxXCjI). I was wondering if it were possible to skip the pre-processing step of...
It'd be amazing to have a rule that **checks if any line is too long**, e.g. - a soft warning for `80` (customizable) - and a harsh warning for `100`...
Consider the following example ```py from IPython.terminal.embed import InteractiveShellEmbed class ClassInSameFile: def answer(self): return "Hello from class in same file" class MyMainClass: def main(self): c = ClassInSameFile() print(c.answer()) shell =...
The following scene fails on startup: ```py from dataclasses import dataclass from manimlib import * @dataclass class Coordinates2D: x: float y: float class MyScene(Scene): def construct(self): print("Hello, world!") ``` Start...
I was wondering what the original motivation for the [`CheckpointManager`](https://github.com/3b1b/manim/blob/master/manimlib/scene/scene_embed.py#L162) was since it forces the users to split the scene into small chunks that start with a comment. This is...