Here is how it works

1
2
3
4
5
6
7
8
9
10
def learn_new_stuff(time)
if time > 30.minutes
# Step 1: the easiest one
watch_me_doing_it
# Step 2: the most important one
practice_by_yourself
# Step 3: the joyful one
got_it ? skill_acquided : ask_for_help
end
end

That’s it.