All presentations are available in the Data Visualization Society Youtube channel.
- Datasette: Simple tabular data cataloging et sharing tool, with extensible data exploration and wrangling UI.
- QRI: Slithly similar to Datasette, with versioning and a cloud offering.
- ❤️ ipyannotator: Extensible annotation tool based on Jupyter widgets.
- ipython-sql and jupyterlab-sql Ipython magic for SQL.
This file contains 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
def _is_host_openstack(): | |
product_name = Path("/sys/devices/virtual/dmi/id/product_name") | |
return product_name.exists() and "OpenStack" in product_name.read_text() |
This file contains 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
""" | |
2 helper classes that can load Google Chrome Heap Snapshots files. | |
Both implementations are experimentals, only tested on one example. | |
""" | |
import collections | |
import json | |
from typing import Dict, Any | |
import numpy as np |
Google Colab: https://colab.research.google.com/
- Free compute! and interesting, fixed cost, 10$/month Google Colab Pro version.
- Notebooks are very easy to share, with ability to control permissions (integration in google drive/doc ecosystem).
- Instant availability. No requirement other than a regular google account.
- Idle time limit : 1h in free version.
NewerOlder