Wes Turner

Results 625 comments of Wes Turner

Use Case: Building docs with a maintained container with any recent version of Python and all of LaTeX preinstalled (which is necessary for building PDFs with Sphinx). Just like RTD...

To build MyST Markdown (with docutils and Sphinx roles and directives), jupyter-book has these https://github.com/executablebooks/jupyter-book/blob/947b30f077dae7e39e34861360850dde3db67745/setup.py#L65 `install_requires` edit: and also [`docs/requirements.txt`](https://github.com/executablebooks/jupyter-book/blob/master/docs/requirements.txt) :: ```python install_requires=[ "pyyaml", "docutils>=0.15", "sphinx>=2,=0.0.6", "sphinx-panels~=0.5.2", "nested-lookup~=0.2.21", ], ```...

> Have you seen anything for hosting multiple versions of docs with just GitHub Pages? Could set the BUILDDIR to `/docs/_build/html/./en/{revtag}/` and then add the `/index.html` and `/en/latest/index.html` pages with...

Here's a start: ``` FROM jupyter/minimal-notebook USER $NB_USER COPY mtsw2e-requirements.txt pip install -r /mtsw2e-requirements.txt ``` https://github.com/jupyter/docker-stacks/tree/master/minimal-notebook https://github.com/jupyter/docker-stacks/blob/master/base-notebook/Dockerfile You could also create an environment.yml. phusion/baseimage-docker launches multiple services in one container...

From awesome-jupyterlab, I found https://github.com/ryantam626/jupyterlab_code_formatter which has `labextension/` and `serverextension/` directories for the JS and Python parts of the extension. https://github.com/mauhai/awesome-jupyterlab - https://github.com/topics/jupyterlab-extension

`__main__.py`: https://github.com/saghul/pycares/blob/master/src/pycares/__main__.py#L39-L60

https://github.com/c-ares/c-ares/search?q=dnskey&type= - https://github.com/c-ares/c-ares/blob/main/src/tools/adig.c#L791-L793 delv (bind) does dnssec ... Fwiw: - https://bind9.readthedocs.io/en/latest/dnssec-guide.html#what-does-dnssec-add-to-dns - https://bind9.readthedocs.io/en/latest/dnssec-guide.html#dnssec-troubleshooting - https://bind9.readthedocs.io/en/latest/dnssec-guide.html#dnssec-keys #types-of-keys - https://github.com/isc-projects/bind9/blob/main/LICENSE - Mozilla Public License, version 2.0 - `isc_result_t dns_zoneverify_dnssec` https://github.com/isc-projects/bind9/blob/main/lib/dns/zoneverify.c#L1960 - `setup_dnsseckeys`...

https://pypi.org/search/?q=dnskey - `class DNSKEY(RD):` https://github.com/paulc/dnslib/blob/master/dnslib/dns.py#L1504 BSD - TODO https://github.com/Yurzs/triton/blob/master/triton/resolver/root.py#L171 MIT

Possibly orthogonal, but relevant to any clarifying statement about where we prefer certain types of communications: A quick [search for "Jupyter security disclosure"](https://www.google.com/search?q=jupyter+security+disclosure) returns this as the first result https://jupyter-notebook.readthedocs.io/en/stable/security.html...

- https://numfocus.org/community/mission : > *The mission of NumFOCUS is to promote open practices in research, data, and scientific computing by serving as a fiscal sponsor for open source projects and...