Skip to content

Instantly share code, notes, and snippets.

View rinzeb's full-sized avatar

rinzeb

  • Netherlands
View GitHub Profile
@rinzeb
rinzeb / media-blueprint.yaml
Last active April 2, 2026 19:54
Play media on selected player
blueprint:
name: Play media on selected player
description: >
Script blueprint to play a selected song/playlist on a chosen media_player.
Optionally starts playback from a time offset and sets repeat mode.
domain: script
homeassistant:
min_version: "2022.4.0"
input:
target_player:
@rinzeb
rinzeb / README.md
Created January 20, 2017 09:09 — forked from jensgrubert/README.md
D3.js Boxplot with Axes and Labels

A box-and-whisker plot with axes. Based on Mike Bostock's implementation. Instead of using individual svg elements as in Mike's implementation, here all boxplots are rendered with in one root element. This makes it easy to add axes.

Further differences between the two implementations are:

  • visibility of boxplot labels can be switched with the labels variable
  • CSV files are supported in which each column is an independent variable and each row contains measurements for all variables (see data.csv)
  • transitions are not used here but can be easily added again