Skip to content

Instantly share code, notes, and snippets.

View sankar4n's full-sized avatar

Sankaran Kaliappan sankar4n

View GitHub Profile
@netcell
netcell / Dockerfile
Last active January 18, 2021 04:19
Wordpress Development with Docker
FROM chriszarate/wordpress
RUN \
apt-get update && \
apt-get install unzip wget mysql-client -y && \
rm -rf /var/lib/apt/lists/*
COPY ./uploads.ini /usr/local/etc/php/conf.d/uploads.ini
COPY docker-entrypoint.sh /usr/local/bin/
@alexrqs
alexrqs / videojs-plugin-events-logger.js
Last active March 6, 2025 21:41
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',