Skip to content

Instantly share code, notes, and snippets.

View thejettdurham's full-sized avatar

Jett Durham thejettdurham

  • Wichita, KS
View GitHub Profile
const fetchMachine = Machine({
id: 'fetch',
initial: 'idle',
context: {
retries: 0
},
on: {
UPDATE_VALUE_FROM_SERVER: {
actions: 'updateInternalValue'
},
const fetchMachine = Machine({
id: 'memberSearchMachine',
initial: 'dataEntry',
context: {
data: {},
validationErrors: {},
apiClient: {},
history: {},
},
states: {

Keybase proof

I hereby claim:

  • I am thejettdurham on github.
  • I am thejettdurham (https://keybase.io/thejettdurham) on keybase.
  • I have a public key ASBoyGwV-NacLIG8cs-UEoAin3JYc6oMOzRalE_dgVnUtQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@thejettdurham
thejettdurham / homestead-xdebug.md
Last active November 1, 2021 23:43
Debugging laravel/lumen + artisan from Homestead with PHPStorm over xdebug

This config works for me with the following setup, YMMV

  • OSX El Capitain
  • PHPStorm 2016.2.1
  • Lumen 5.2
  • Homestead as of Lumen 5.2
    • php 7.0.8-2
    • Xdebug 2.4.0

Homestead Configuration