Created
February 4, 2021 19:19
-
-
Save rschwabco/d10c3b40ac47d37e18a8eb075cc311b3 to your computer and use it in GitHub Desktop.
AcceleRun
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AcceleRun | |
neutral | |
consider a new idea | |
know how to do it -> do new thing | |
do not know how to do it -> learn new thing | |
do new thing | |
ideate | |
plan | |
recruit | |
learn new thing | |
immediate term | |
create hackapod poc | |
build -> built | |
built | |
test -> tested | |
tested | |
deploy -> deployed | |
deployed | |
retro* | |
success -> short term | |
failure -> neutral | |
short term | |
medium term | |
long term | |
expand globally -> utopia | |
utopia | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function render(model){ | |
var activeStates = model.active_states.map(x => x.name); | |
return $('div', | |
$('div', {style: {position: "relative", left: 50, top: 30, padding: 40, margin: 30, fontFamily: "sans-serif" }, | |
draggable: false, | |
onClick: function(){ model.emit("onVesselClick") }, | |
onMouseEnter: function(){ model.emit('onMouseInVessel')}, | |
onMouseLeave: function(){ model.emit('onMouseOutVessel')}, | |
}, | |
`${activeStates.join(",")}`) , | |
$('button', {style: {position: "relative", left: 50, top: 30, padding: 40, margin: 30, fontFamily: "sans-serif" }, | |
draggable: false, | |
onClick: function(){ model.emit("onVesselClick") }, | |
onMouseEnter: function(){ model.emit('onMouseInVessel')}, | |
onMouseLeave: function(){ model.emit('onMouseOutVessel')}, | |
}, | |
`Button`) , | |
$('button', {style: {position: "relative", left: 50, top: 30, padding: 40, margin: 30, fontFamily: "sans-serif"}, | |
draggable: true, | |
onClick: function(){ model.emit("onRequirementClick") }, | |
onMouseEnter: function(){ model.emit('onMouseInRequirement')}, | |
onMouseLeave: function(){ model.emit('onMouseOutRequirement')}, | |
onDragStart: function(){ model.emit('onDrag')}, | |
onDragEnd: function(){ model.emit('onDrop')}, | |
}, | |
`Requirement`) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment