Last active
February 4, 2021 06:47
-
-
Save rschwabco/f2dd78e2aa809f7ae14ce0988cacc31f to your computer and use it in GitHub Desktop.
Life Of Nadav Hakatan
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
Life Of Nadav Hakatan | |
neutral | |
normal life -> normal operations | |
considering the what to do in immediate term? -> immediate term | |
normal operations | |
idle* | |
hungry? -> eat | |
tired? -> sleep | |
bored? -> learn new thing | |
motivated? -> do something | |
sleep | |
done sleeping? -> normal operations | |
eat | |
check food situation* | |
no food? -> make food | |
have food? -> have food | |
make food | |
food made? -> have food | |
have food | |
eat food | |
done eating? -> done eating | |
done eating | |
tired? -> sleep | |
ready to go? -> normal operations | |
day job | |
do something | |
think about what you shoud do* | |
already working on something? -> work on an existing project | |
nothing going on? -> consider a new idea | |
learn new thing | |
do you know anything about this thing? | |
i know something about this -> summarize | |
summarize | |
do you know enough?* | |
yes? -> do something | |
no? -> try the internet | |
got nothing -> try the internet | |
try the internet | |
tried but no luck? -> ask a friend | |
ask a friend | |
was your friend helpful?* | |
consider a new idea | |
know how to do it -> do new thing | |
do not know how to do it -> learn new thing | |
work on an existing project | |
did you make a plan? | |
yes? -> immediate term | |
no? -> plan | |
do you have people working with you? | |
no? -> recruit | |
do new thing | |
ideate | |
plan | |
recruit | |
immediate term | |
create hackapod poc | |
start building -> building | |
building | |
done building everything? -> built | |
Nadav -> Startup starter kit | |
Startup starter kit | |
Maor -> Pod matching | |
Pod matching | |
Roie -> Auto infra generation | |
Auto infra generation | |
Event tracking for assets and people | |
Generate beta screens with | |
built | |
test -> tested | |
tested | |
deploy -> deployed | |
deployed | |
collect observations -> observations collected | |
observations collected | |
retro* | |
success -> short term | |
failure -> neutral | |
short term | |
establish organization -> organization established | |
organization established | |
start raise | |
raise ongoing | |
raise complete | |
raise successful? -> medium term | |
raise failed -> neutral | |
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