Skip to content

Instantly share code, notes, and snippets.

View tomByrer's full-sized avatar
🎦
researching video players

Tom Byrer tomByrer

🎦
researching video players
View GitHub Profile
@tomByrer
tomByrer / machine.js
Last active September 30, 2020 23:45
Generated by XState Viz: https://xstate.js.org/viz
const radioGroup = Machine(
{
id: "radioGroup",
initial: "emptied",
context: {
selected: "",
},
states: {
emptied: {
on: {
@tomByrer
tomByrer / machine.js
Last active September 28, 2020 17:51
Generated by XState Viz: https://xstate.js.org/viz
const radioItem = Machine(
{
id: 'checkbox',
initial: 'nix',
states: {
nix: {
on: {
DISABLE: 'nixDisabled',
SELECT: 'aver',
},
@tomByrer
tomByrer / machine.js
Last active September 17, 2020 03:48
Generated by XState Viz: https://xstate.js.org/viz
const labelSwitch = Machine(
{
id: 'labelSwitch',
initial: 'nix',
context: {
retries: 0
},
states: {
nix: {
entry: ['activateNix'],
@tomByrer
tomByrer / machine.js
Last active September 5, 2020 11:47
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine(
{
id: 'checkbox',
initial: 'down',
context: {
retries: 0
},
states: {
down: {
on: {
@tomByrer
tomByrer / machine.js
Last active September 14, 2020 03:06
Generated by XState Viz: https://xstate.js.org/viz
const superButton = Machine(
{
id: 'superButton',
initial: 'ready',
context: {
disabled: 0
},
states: {
ready: {
on: {
@tomByrer
tomByrer / machine.js
Last active August 11, 2020 00:48
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@tomByrer
tomByrer / material-ui-jsdelivr-cdn.htm
Created January 22, 2020 14:12
React-MUI using jsDelivr CDN for in-browser hydration.
<!DOCTYPE html>
<html lang="en">
<head>
<title>My page</title>
<meta charset="utf-8" />
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width" />
<script src="https://cdn.jsdelivr.net/combine/npm/[email protected]/umd/react.development.js,npm/[email protected]/umd/react-dom.development.js,npm/@material-ui/[email protected]/umd/material-ui.development.js,npm/@babel/[email protected]/babel.min.js" crossorigin="anonymous"></script>
<!-- Seperate Links
src: https://github.com/mui-org/material-ui/blob/master/examples/cdn/index.html -->
@tomByrer
tomByrer / jpeg_split.c
Created December 17, 2016 02:33 — forked from Hodapp87/jpeg_split.c
Write each scan from a multi-scan/progressive JPEG.
// jpeg_split.c: Write each scan from a multi-scan/progressive JPEG.
// This is based loosely on example.c from libjpeg, and should require only
// libjpeg as a dependency (e.g. gcc -ljpeg -o jpeg_split.o jpeg_split.c).
#include <stdio.h>
#include <jerror.h>
#include "jpeglib.h"
#include <setjmp.h>
#include <string.h>
void read_scan(struct jpeg_decompress_struct * cinfo,
@tomByrer
tomByrer / English-Homophones.md
Last active May 2, 2024 23:41
English Homophones

English Homophones

Words that sound alike, but are spelled differently (usually different meanings).

Use cases

  • filter out dictionary words, resulting in a word list that reduces confusion for verbal password phrases
  • rhymes (song lyrics, poetry)
  • humor/jokes
@tomByrer
tomByrer / twemoji-1f63b-widthheight.svg
Created November 13, 2014 17:43
Testing adding width & hight to twemoji's SVG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.