├── .gitignore ├── LICENSE ├── README.md ├── bundled-app └── README.md ├── git-integration └── README.md ├── react-components └── README.md ├── real-time-collab └── README.md └── remote-kernels ├── README.md ├── digital-science-grant.md └── img ├── anticipated-timeline.png ├── nteract-backend-arch.png └── nteract.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/README.md -------------------------------------------------------------------------------- /bundled-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/bundled-app/README.md -------------------------------------------------------------------------------- /git-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/git-integration/README.md -------------------------------------------------------------------------------- /react-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/react-components/README.md -------------------------------------------------------------------------------- /real-time-collab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/real-time-collab/README.md -------------------------------------------------------------------------------- /remote-kernels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/remote-kernels/README.md -------------------------------------------------------------------------------- /remote-kernels/digital-science-grant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/remote-kernels/digital-science-grant.md -------------------------------------------------------------------------------- /remote-kernels/img/anticipated-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/remote-kernels/img/anticipated-timeline.png -------------------------------------------------------------------------------- /remote-kernels/img/nteract-backend-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/remote-kernels/img/nteract-backend-arch.png -------------------------------------------------------------------------------- /remote-kernels/img/nteract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nteract/initiatives/HEAD/remote-kernels/img/nteract.png --------------------------------------------------------------------------------