Skip to content

Instantly share code, notes, and snippets.

View jaredsmith's full-sized avatar

Jared Smith jaredsmith

View GitHub Profile
@jaredsmith
jaredsmith / new-file.bpmn
Created July 24, 2020 19:17
new-file.bpmn
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:bpsim="http://www.bpsim.org/schemas/1.0" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:drools="http://www.jboss.org/drools" id="_SrGsQbAQEDi7k9MBHCVNmQ" exporter="jBPM Process Modeler" exporterVersion="2.0" targetNamespace="http://www.omg.org/bpmn20">
<bpmn2:itemDefinition id="_NameItem" structureRef="String"/>
<bpmn2:itemDefinition id="_NumberItem" structureRef="String"/>
<bpmn2:itemDefinition id="_RangeHolderItem" structureRef="String"/>
<bpmn2:itemDefinition id="_PortApprovedItem" structureRef="Boolean"/>
<bpmn2:itemDefinition id="__7F9049CD-468A-4005-B07B-254D86969375_SkippableInputXItem" structureRef="Object"/>
<bpmn2:itemDefinition id="__7F9049CD-468A-4005-B07B-254D86969375_PriorityInputXItem" structureRef="Object"/>
<bpmn2:itemDefinition id
@jaredsmith
jaredsmith / new-file.bpmn
Created July 24, 2020 19:17
new-file.bpmn
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:bpsim="http://www.bpsim.org/schemas/1.0" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:drools="http://www.jboss.org/drools" id="_P88c4LAQEDilZY7TpYLUVg" exporter="jBPM Process Modeler" exporterVersion="2.0" targetNamespace="http://www.omg.org/bpmn20">
<bpmn2:itemDefinition id="_NameItem" structureRef="String"/>
<bpmn2:itemDefinition id="_NumberItem" structureRef="String"/>
<bpmn2:itemDefinition id="_RangeHolderItem" structureRef="String"/>
<bpmn2:itemDefinition id="_PortApprovedItem" structureRef="Boolean"/>
<bpmn2:itemDefinition id="__7F9049CD-468A-4005-B07B-254D86969375_SkippableInputXItem" structureRef="Object"/>
<bpmn2:itemDefinition id="__7F9049CD-468A-4005-B07B-254D86969375_PriorityInputXItem" structureRef="Object"/>
<bpmn2:itemDefinition id

Keybase proof

I hereby claim:

  • I am jaredsmith on github.
  • I am jaredsmith (https://keybase.io/jaredsmith) on keybase.
  • I have a public key whose fingerprint is 1E46 74AA A394 0EAA 6596 FDF0 7D9D 159F 210B DF5A

To claim this, I am signing this object:

It is not the critic who counts: not the man who points out how the strong man stumbles or where the doer of deeds could have done better. The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood, who strives valiantly, who errs and comes up short again and again, because there is no effort without error or shortcoming, but who knows the great enthusiasms, the great devotions, who spends himself for a worthy cause; who, at the best, knows, in the end, the triumph of high achievement, and who, at the worst, if he fails, at least he fails while daring greatly, so that his place shall never be with those cold and timid souls who knew neither victory nor defeat.
Theodore Roosevelt, April 23rd 1910
@jaredsmith
jaredsmith / remove_xmlns
Created February 1, 2011 20:23
Remove XML namespaces
<xsl:stylesheet xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" version ="1.0" >
<xsl:template match ="@*" >
<xsl:attribute name ="{local-name()}" >
<xsl:value-of select ="." />
</xsl:attribute>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match ="*" >
<xsl:element name ="{local-name()}" >
<xsl:apply-templates select ="@* | node()" />