Skip to content

Instantly share code, notes, and snippets.

View DaveHudson's full-sized avatar

Dave Hudson DaveHudson

View GitHub Profile
@DaveHudson
DaveHudson / gistdd.md
Created October 10, 2021 21:34
Created from Remix form

spin test

@DaveHudson
DaveHudson / remixgist.md
Created October 10, 2021 21:17
Created from Remix form

This is a test gist from Remix

@DaveHudson
DaveHudson / machine.js
Last active June 14, 2021 08:49
Generated by XState Viz: https://xstate.js.org/viz
const demoChat = Machine({
id: 'demo',
initial: 'idle',
context: {},
states: {
idle: {
on: {
DEMO: 'patient1'
@DaveHudson
DaveHudson / remix test
Created May 1, 2021 14:51
Created from Remix Form!
testing
@DaveHudson
DaveHudson / Remixing it up
Created May 1, 2021 14:51
Created from Remix Form!
Remix test
@DaveHudson
DaveHudson / test
Created May 1, 2021 14:45
Created from Remix Form!
test
@DaveHudson
DaveHudson / machine.js
Last active April 9, 2021 13:28
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@DaveHudson
DaveHudson / machine.js
Created March 24, 2021 13:55
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@DaveHudson
DaveHudson / machine.js
Last active March 15, 2021 14:07
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@DaveHudson
DaveHudson / machine.js
Last active September 11, 2020 19:23
Generated by XState Viz: https://xstate.js.org/viz
const uploadImageMachine = Machine({
id: 'uploadImage',
initial: 'idle',
context: {
data: undefined,
error: undefined,
},
states: {
idle: {
on: {