William Stein

Results 451 issues of William Stein

Frequently I want to be able to drag around the icons in the toolbar for an editor. These are the buttons corresponding to a subset of menu options. E.g,. there's...

P-hitlist
A-menus

In JupyterLab they also have busy and unsaved indicators, and they are completely different and unrelated to how we systematically solve the same problems in CoCalc. See, e.g., - https://github.com/jupyterlab/jupyterlab/issues/4758...

A-jupyter
P-low
E-unclear
I-accessibility

```jl using Plots # Generate a sequence of normally distributed random numbers n = 100 random_walk = cumsum(randn(n)) # Plot the random walk plot(random_walk, xlabel="Step", ylabel="Position") ``` The above is...

A-jupyter
jupyter-api

See screenshot. ![image](https://user-images.githubusercontent.com/1276278/153086573-2b7eebce-ff1a-4d52-a60e-4dd522520c0d.png) REQUESTED BY: S. Jiao

A-jupyter
I-feature request
A-jupyter-extension

This isn't implemented in a nice way directly in CoCalc right now. This https://nbconvert.readthedocs.io/en/5.4/changelog.html suggest setting some metadata in the notebook, e.g., for title and authors, might work. For the...

A-jupyter
I-feature request

This and https://doc.cocalc.com/jupyter-classical-vs-cocalc.html need to go for various reasons. I'm definitely not going to support jupyter classic any further or develop it. I would like to delete all the relevant...

A-jupyter
deprecation

This is purely an internal implementation detail, but it could fix some bugs, especially for non-US keyboards...

I-enhancement
A-jupyter

[For example](https://drive.google.com/file/d/1zxguHQD57BZvl-oXI4wRyxJicF7HxFc1/view?usp=sharing)

A-jupyter
I-feature request

Harald wrote this very good answer to a support question: > The overall process here is that in the first step, the notebook is translated to LaTeX (a typesetting language,...

I-enhancement
A-jupyter
E-easy
A-help

In Jupyter classic [this example](https://ipywidgets.readthedocs.io/en/stable/examples/Widget%20Events.html?highlight=observe#Example): ``` from IPython.display import display button = widgets.Button(description="Click Me!") display(button) def on_button_clicked(b): print("Button clicked.") button.on_click(on_button_clicked) ``` works fine in the way many users expect, but...

A-jupyter
E-unclear
A-ipywidgets