Eloi Torrents

Results 110 comments of Eloi Torrents

I think it requires Flutter #12749

Thank you for your effort! From his website > After possibly some 3.0.x bugfix releases, an effort will be made to port to Qt6/KF6, and hopefully have such version available...

Related to this, I would also like formulas in "display mode" to default to centered. Could you consider adding an option for that?

I figured out that this works. ``` from sage.all import plot, sin P = plot(sin, (0, 10)) P.matplotlib() ``` However this is not needed in jupyter notebooks.

Maybe even better to show: ``` Value Error: Computation failed since Maxima requested additional constraints; using the 'assume' command before evaluation *may* help (example of legal syntax is 'assume(a>0)', see...

Also, `function?` could be an alias for `mo.doc(function)`. In sage there is also `function??` which shows the implementation.

mmm I think that the `mo.md()` trick is good for markdown, but not for code in genereal. Sage files have a `.sage` extension. Maybe a first step could be to...

> Different file-extensions that enforce a different syntax would be quite difficult I don't think so... All the syntax and function decorators that marimo uses will just work in sagemath....

I don't think it is needed to run the AST parser on the actual cells, but running it on `preparse(cell_content)` (which is just python code) would be enough for now....

By the way, `x` and such are defined by default using `from sage.all_cmdline import *`.