Skip to content

Instantly share code, notes, and snippets.

Version 1.2

This Version of SpiffWorkflow adds support for Data Objects, Messages, and Service Tasks, powerful new tools from the BPMN standard. It is our first step towards offering support for a customized BPMN Editor that is still under development, but available on GitHub and perfectly serviceable. Please try it out!

In addition to some major new features, we've improved some existing core features. The Python Expression Engine is now easier to extend and modify for custom deployments, and SubProcesses have a far stronger and more consistent logical representation and are easier to control. We've also added the ability to unit test your script tasks - to make it much easier to write small python scripts to re-structure your data.

Finally, we undertook hours of effort to clean up the code base, so that imports are consistent, circular dependencies are removed, and code smells are eliminated. It is by no means perfect, but we are arcing in th

@burnettk
burnettk / 1_ruby_build_install_2_2_5.txt
Last active September 23, 2020 13:38
ruby-build rbenv openssl issue installing ruby 2.2.5 with xcode command line developer tools version 12
# 2.1.10 failed with the same openssl errors
# 2.2.2 failed with the same openssl errors
# 2.2.5 failed with the same openssl errors
# 2.2.10 had a different, non-ssl error. perhaps it didn't get far enough to repro the ssl issue.
# 2.3.1 and 2.3.8 worked
# openssl is the one installed with Mac OS X 10.15.6 / catalina (no openssl installed via homebrew. see 3_repro_steps.sh below):
% openssl version
LibreSSL 2.8.3
@burnettk
burnettk / .vimrc
Created January 20, 2015 04:16
Get angular-vim-snippets working with vundle
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'