Skip to content

Instantly share code, notes, and snippets.

View claylevering's full-sized avatar
🏠
Working from home

Clay Levering claylevering

🏠
Working from home
View GitHub Profile
@alexrqs
alexrqs / videojs-plugin-events-logger.js
Last active June 26, 2024 22:19
VideoJS event list
// The events are from https://www.w3.org/TR/html5/semantics-embedded-content.html#media-elements-event-summary
import videojs from 'video.js'
const Plugin = videojs.getPlugin('plugin')
const EVENTS = [
'loadstart',
'progress',
'suspend',
'abort',
'error',
@TheJKFever
TheJKFever / pie.coffee
Last active March 11, 2023 09:23 — forked from stevenleeg/pie.coffee
Dashing Pie Chart Graph Widget with title more-info and horizontal legend that fits in a 1x1 spot
class Dashing.Pie extends Dashing.Widget
@accessor 'value', Dashing.AnimatedValue
onData: (data) ->
width = 220
height = 220
radius = 110
color = d3.scale.category20()
$(@node).find('.pie_chart svg').remove();