Skip to content

Instantly share code, notes, and snippets.

View b00y0h's full-sized avatar

Bob Smith b00y0h

View GitHub Profile
@b00y0h
b00y0h / dialog.html
Created August 19, 2021 13:57 — forked from coinsandsteeldev/dialog.html
Google Sheets script to allow multi-select in cells with data-validation (adapted from https://www.youtube.com/watch?v=dm4z9l26O0I)
<!DOCTYPE html>
<html>
<head>
<script>
var data
var formId = 'form'
function drawForm() {
if (!data) return
var outputEl = document.getElementById(formId);
@b00y0h
b00y0h / gist:9f8f1c12ed9e0c09a3ccb814a1112cb2
Created March 28, 2017 12:22 — forked from omgmog/gist:33ec177eea6b78adbaf3
Convert an m4v to gif with ffmpeg
ffmpeg -i input.m4v -pix_fmt rgb24 -r 10 -y -s [width]x[height] output.gif