Created
February 6, 2013 02:24
-
-
Save calroc/4719702 to your computer and use it in GitHub Desktop.
This is Python pseudocode for the deprecated Six Step Reframe pattern.
This file contains 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
from nlp import unconscious_connection | |
behavior = 'some behaviour you want to change' | |
urmind = unconscious_connection() | |
G = urmind.get_generative_part() | |
I = urmind.intention_of(behavior) | |
new_behaviors = [] | |
while len(new_behaviors) < 3: | |
b = G.generate_behavior_for_(I) | |
if I.expected_efficacy(b) > I.expected_efficacy(behavior): | |
new_behaviors.append(b) | |
if I.utilize(new_behaviors): | |
urmind.commit(I) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment