[jupyter] Declarative widgets project status

2018-03-22 Thread Jason Grout
Hi everyone, There have been some questions recently about the status of the declarative widgets project at https://github.com/jupyter-widgets/declarativewidgets. In https://github.com/jupyter-widgets/declarativewidgets/issues/570, the people involved in the repo said that the project is

Re: [jupyter] remove up-down arrows on numeric widgets?

2018-03-22 Thread Jason Grout
That's a browser rendering thing since we now use the html 5 numeric types. I don't know of a way to get the browser to not render those increment arrows. Jason On Thu, Mar 22, 2018 at 11:17 AM Randy Heiland wrote: > Is it possible to remove the little up-down arrows

Re: [jupyter] Running the proxy without SSL

2018-03-22 Thread Michael Milligan
Hi Norman - You are correct that Jupyterhub will serve without SSL simply by not providing the SSL keys. There used to be an explicit "--no-ssl" flag but that was deprecated with the 0.7 release. My suspicion is that this is going to be more finicky than you would like. Presumably you want users

[jupyter] remove up-down arrows on numeric widgets?

2018-03-22 Thread Randy Heiland
Is it possible to remove the little up-down arrows to increment values in a numeric widget? My desire to do so is to save on horizontal space when I want several such widgets. Thanks! -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To

Re: [jupyter] Running the proxy without SSL

2018-03-22 Thread Norman Gray
Roland, hello. On 22 Mar 2018, at 8:22, Roland Weber wrote: Afaik, listening on two different ports is not possible without changing code. Righto -- thanks for confirming. You could also solve your problem by keeping JupyterHub on the deprecated SSL port, and encrypting the connection

Re: [jupyter] Using notebooks as informal packages - (non)exportable code cells

2018-03-22 Thread Johannes Feist
In case you are not aware of the possibility, what I have been doing for this case is the "standard" python approach, i.e., simply guard the part that shouldn't run upon import with if __name__=='__main__': statements. When you execute a notebook interactively, __name__ is defined as '__main__',

[jupyter] Using notebooks as informal packages - (non)exportable code cells

2018-03-22 Thread Tony Hirst
Recipes such as http://jupyter-notebook.readthedocs.io/en/stable/examples/Notebook/Importing%20Notebooks.html provide a means for importing the contents of a notebook as a module, but they do so by executing all code cells. My development notebooks tend to have functions defined as well as

[jupyter] Open position: software engineer for data analysis at European X-ray Free Electron Laser (XFEL)

2018-03-22 Thread Hans Fangohr
Dear all, Disclaimer: the positions advertised below are to work in my team on data analysis at European XFEL (hosting the world’s brightest laser in a 3.4km long tunnel) in Germany. See the text for details, in brief we are looking for Python skills, Jupyter and container knowledge is very

[jupyter] Re: Running the proxy without SSL

2018-03-22 Thread Roland Weber
Afaik, listening on two different ports is not possible without changing code. You could also solve your problem by keeping JupyterHub on the deprecated SSL port, and encrypting the connection between the SSL-terminating proxy and JupyterHub. I'm sure that pull requests to improve the