Skip to content

Instantly share code, notes, and snippets.

View eveporcello's full-sized avatar

Eve Porcello eveporcello

View GitHub Profile

bit.ly/cascadiasecret

sk-proj-qr9qUSknM3JJefGLhxBsT3BlbkFJeyGexGD8IdNSVPV6z1Tg

const tahoeTravelMachine = Machine({
id: "tahoe-travel",
initial: "walking",
states: {
walking: {
on: {
THUMBS_UP: "hitchhiking",
ARRIVED: "arrived"
}
},
@eveporcello
eveporcello / machine.js
Last active February 24, 2021 19:31
Generated by XState Viz: https://xstate.js.org/viz
const tahoeTravelMachine = Machine({
id: "tahoe-travel",
initial: "walking",
states: {
walking: {
on: {
THUMBS_UP: "hitchhiking",
ARRIVED: "arrived"
}
},
@eveporcello
eveporcello / machine.js
Last active September 9, 2020 06:44
Generated by XState Viz: https://xstate.js.org/viz
const menuMachine = Machine({
id: 'menu',
initial: 'collapsed',
states: {
expanded: {
on: {
COLLAPSE: 'collapsed'
}
},
collapsed: {
@eveporcello
eveporcello / machine.js
Created September 8, 2020 22:19
Generated by XState Viz: https://xstate.js.org/viz
const cocktailMachine = Machine({
id: 'cocktail',
initial: 'empty',
context: {
ingredients: []
},
states: {
empty: {
on: {
FIRST_INGREDIENT: {
@eveporcello
eveporcello / machine.js
Created September 8, 2020 21:52
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'fetch',
initial: 'idle',
context: {
retries: 0
},
states: {
idle: {
on: {
FETCH: 'loading'
@eveporcello
eveporcello / machine.js
Last active October 21, 2021 16:31
Generated by XState Viz: https://xstate.js.org/viz
const tahoeTravelMachine = Machine({
id: "ML-to-Live",
initial: "analysis",
states: {
analysis: {
on: {
COMPLETE: "data"
}
},
data: {
query {
allLifts {
id
name
}
}
@eveporcello
eveporcello / teacher-settings.json
Last active March 25, 2024 01:55
These are the VSCode settings that we use when recording screencast videos 🍿
{
"zenMode.hideLineNumbers": false,
"workbench.colorTheme": "Night Owl",
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.wordBasedSuggestions": false,
"editor.suggestOnTriggerCharacters": false,
@eveporcello
eveporcello / whats-next.md
Last active September 18, 2019 19:18
What's next with GraphQL?