Skip to content

Instantly share code, notes, and snippets.

View dburrows's full-sized avatar
🙃

David Burrows dburrows

🙃
View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@dburrows
dburrows / machine.js
Last active January 13, 2021 21:48
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
@dburrows
dburrows / machine.js
Last active December 19, 2019 14:06
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
# generate by running command
# code --list-extensions | xargs -L 1 echo code --install-extension
code --install-extension Zignd.html-css-class-completion
code --install-extension abusaidm.html-snippets
code --install-extension angryobject.react-pure-to-class-vscode
code --install-extension azemoh.one-monokai
code --install-extension bibhasdn.unique-lines
code --install-extension dbaeumer.vscode-eslint
code --install-extension drKnoxy.eslint-disable-snippets
@dburrows
dburrows / OS X - installing Ansible via `pip install`
Last active November 4, 2016 01:13
Reliably installing Ansible on OS X Mavericks
// brew install ansible didn't work properly,
// even tried brew install python but no joy
// so use pip on standard python install
sudo pip install ansible
// if you get errors try this
// from https://github.com/ansible/ansible/issues/7146
When you get to the step 'sudo pip install ansible', do this instead:
@dburrows
dburrows / gist:6462367
Created September 6, 2013 10:59
Sublime Text 3 Icons Fix
fix is here https://github.com/SublimeLinter/SublimeLinter/commit/4ed28de
--
in Sublime Text 3, in the SublimeLinter folder
edit SublimeLinter.py
42: +MARK_THEMES_PATH = os.path.join('Packages', 'SublimeLinter', 'gutter_mark_themes')
263: gutter_mark_image = gutter_mark_theme + '-' + lint_type
@dburrows
dburrows / rspec_cheat_sheet.rd
Created April 25, 2012 11:27 — forked from byplayer/rspec_cheat_sheet.rd
rspec cheat sheet
INSTALL
=======
$ gem install rspec
RSPEC-RAILS
===========
RAILS-3
=======
@dburrows
dburrows / Gemfile
Created March 23, 2012 19:17 — forked from mbleigh/Gemfile
Non-Rails Rackup with Sprockets, Compass, Handlebars, Coffeescript, and Twitter Bootstrap
source "https://rubygems.org"
gem 'sprockets'
gem 'sprockets-sass'
gem 'sass'
gem 'compass'
gem 'bootstrap-sass'
gem 'handlebars_assets'
gem 'coffee-script'
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">