| Project | Description | Crates Used | Notes |
|---|---|---|---|
| quarto-dev/q2 | Experimental Rust rewrite of Quarto (scientific document publishing) | runtimelib, jupyter-protocol |
From Posit/RStudio |
| stencila/stencila | Platform for dynamic, data-driven scientific documents | jupyter-protocol, nbformat |
v2 Rust rewrite |
| dropbox/dKNOW | Document processing toolkit for extracting structured info | jupyter-protocol (0.9), nbformat (0.13) |
Older pre-1.0 versions |
| ad-si/Woxi | Rust-based Wolfram Language interpreter with Jupyter kernel | jupyter-protocol, runtimelib |
Uses git deps pointing to runtimed |
| bitbloxhub/jupyter-api.nvim | Neovim plugin for Jupyter kernel interaction | jupyter-protocol, runtimelib |
Newer pr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Lattice Boltzmann Method (D2Q9) fluid simulation with matplotlib inline rendering. | |
| Styled for Gruvbox Dark. | |
| """ | |
| import time | |
| import matplotlib.colors as mcolors | |
| import matplotlib.pyplot as plt | |
| import numpy as np |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP TABLE IF EXISTS baby_names; | |
| CREATE TEMPORARY TABLE baby_names( name TEXT, rank INTEGER ); | |
| -- From most popular baby names of 2020 according to the Social Security Administration | |
| -- https://www.ssa.gov/oact/babynames/ | |
| INSERT INTO baby_names ('name', 'rank') VALUES ('Liam', 1); | |
| INSERT INTO baby_names ('name', 'rank') VALUES ('Olivia', 1); | |
| INSERT INTO baby_names ('name', 'rank') VALUES ('Noah', 2); | |
| INSERT INTO baby_names ('name', 'rank') VALUES ('Emma', 2); | |
| INSERT INTO baby_names ('name', 'rank') VALUES ('Oliver', 3); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(console){ | |
| console.save = function(data, filename){ | |
| if(!data) { | |
| data = Jupyter.notebook.toJSON(); | |
| } | |
| filename = Jupyter.notebook.notebook_name; | |
| if(!filename) { |
NewerOlder