Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wilberquito/interactive-pd.a-scala
Pd.A material using Scala kernel for Jupyter notebook
https://github.com/wilberquito/interactive-pd.a-scala
Last synced: 4 days ago
JSON representation
Pd.A material using Scala kernel for Jupyter notebook
- Host: GitHub
- URL: https://github.com/wilberquito/interactive-pd.a-scala
- Owner: wilberquito
- Created: 2024-09-18T17:23:52.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T14:04:55.000Z (19 days ago)
- Last Synced: 2024-10-29T17:13:24.292Z (19 days ago)
- Language: Jupyter Notebook
- Size: 290 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scala tour
For teaching purposes, we will use Jupyter notebooks that run Scala code. As a
student, you are likely here to learn how Scala works, and you may not be
interested in the details of how it interacts with Jupyter technology. If
that’s the case, you can refer to the materials in the `./notebooks/`
directory. However, if you are curious about how this setup is built, you might
want to read [this
post](https://blog.brunk.io/posts/interactive-computing-with-jupyter-and-almond/)
which explains `almond`, the technology that makes this interactivity possible.
If you'd like to use `almond`, you can find the project’s GitHub repository
[here]([email protected]:almond-sh/almond.git).Bellow you'll find the the instructions to make run the
Scala kernel for Jupyter using docker.## Build
```sh
docker build --tag wilberquito/almondsh . --no-cache
```## Run container with volume
```sh
docker run -it --rm -p 8888:8888 --volume ./notebooks:/home/wilberquito/notebooks wilberquito/almondsh:latest
```