Skip to content

Instantly share code, notes, and snippets.

View kolibril13's full-sized avatar
🐶

Jan-Hendrik Müller kolibril13

🐶
View GitHub Profile
@kolibril13
kolibril13 / foo.py
Created December 15, 2024 20:31
matplotlib with environment variables.
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "matplotlib",
# ]
# ///
# hearder was generated with command:
# uv add --script foo.py matplotlib
@kolibril13
kolibril13 / matplotlib_fixed_version
Created December 15, 2024 18:55
matplotlib inline with fixed version
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "matplotlib==3.10.0",
# ]
# ///
# header was generated with this one terminal command:
# uv init --script foo.py
# echo -e 'matplotlib' | \
@kolibril13
kolibril13 / marimo_minimal_numpy_example.py
Created December 6, 2024 15:11
With PY Ending - Testing: uvx marimo edit --sandbox URL
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "numpy==2.1.3",
# ]
# ///
import marimo
__generated_with = "0.9.31"
@kolibril13
kolibril13 / marimo_minimal_numpy_example
Created December 6, 2024 15:08
Testing: uvx marimo edit --sandbox URL
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "numpy==2.1.3",
# ]
# ///
import marimo
__generated_with = "0.9.31"
@kolibril13
kolibril13 / notebook_png.ipynb
Created December 3, 2024 11:59
notebook with png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kolibril13
kolibril13 / convert_mov_to_mp4.py
Created December 1, 2024 17:02
convert mov to mp4 files with ffmpeg
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "ffmpeg-python",
# ]
# ///
# header generated with
# uv add --script convert_mov_to_mp4.py ffmpeg-python
from pathlib import Path
@kolibril13
kolibril13 / benchmark.py
Created November 29, 2024 15:20
pandas vs polars for reading csv files
# /// script
# requires-python = ">=3.12,<3.13"
# dependencies = [
# "pandas",
# "polars",
# ]
# ///
# note: the header of this script was generated by the command
# uv add --script benchmark.py pandas polars
# /// script
# requires-python = ">=3.11,<3.12"
# dependencies = [
# "bpy==4.2.0",
# "marimo",
# "numpy==2.1.3",
# "polars==1.14.0",
# "quak==0.2.1",
# ]
# ///
# /// script
# requires-python = ">=3.11,<3.12"
# dependencies = [
# "bpy==4.2.0",
# "marimo",
# ]
# ///
import marimo
@kolibril13
kolibril13 / nb_image_compressor.py
Last active January 25, 2025 21:22
Compress images in notebooks
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "nbformat==5.10.4",
# "pillow==11.0.0",
# ]
# ///
from pathlib import Path
import nbformat