Skip to content

Instantly share code, notes, and snippets.

@joelseq
joelseq / machine.js
Created September 21, 2021 23:19
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@joelseq
joelseq / keybase.md
Created March 14, 2017 20:54
Keybase proof

Keybase proof

I hereby claim:

  • I am joelseq on github.
  • I am joelseq (https://keybase.io/joelseq) on keybase.
  • I have a public key ASDnSGDPAcSwsRUF0DLqO1MWJ9C7QoJiH1nMP97B8PBffwo

To claim this, I am signing this object:

@joelseq
joelseq / npm-packages.md
Last active June 16, 2016 17:53
Useful NPM packages
@joelseq
joelseq / .gitconfig
Created April 18, 2016 22:29 — forked from pksunkara/config
Sample of git config file (Example .gitconfig)
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
@joelseq
joelseq / hide.js
Created March 7, 2016 08:09
Hide facebook newsfeed
var container = document.getElementById('globalContainer');
container.style.visibility = 'hidden';